home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
cgazv4n2.zip
/
MSRCH.H
< prev
next >
Wrap
C/C++ Source or Header
|
1989-08-20
|
514b
|
18 lines
/***************************************************************
* File: msrch.h
* Author: John Rex
* Purpose: header file for access to multi-search routines
* of msrch.c
**************************************************************/
/* linked list structure for keywords */
struct kword {
unsigned char *word;
struct kword *next;
};
/* the routines */
void msrch_init(struct kword *);
void msrch_go(int (*msrch_data) (), void (*msrch_signal) (char *));
void msrch_end(void);